From: Michael Albinus Date: Fri, 2 Oct 2009 06:00:58 +0000 (+0000) Subject: * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10127 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d071fe405455a6814127bbb31ed8182e18050871;p=emacs.git * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory. --- diff --git a/src/w32fns.c b/src/w32fns.c index 2b6b12e671c..8003d791719 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -6218,7 +6218,7 @@ DEFUN ("system-move-file-to-trash", Fsystem_move_file_to_trash, if (!NILP (Ffile_directory_p (filename)) && NILP (Ffile_symlink_p (filename))) { - operation = Qdelete_directory_internal; + operation = intern ("delete-directory"); filename = Fdirectory_file_name (filename); } filename = Fexpand_file_name (filename, Qnil);